home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / access / btreectl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  439 b   |  21 lines

  1. /*
  2.  *  btreectl.h -- Public structure definitions for using the amctl()
  3.  *          interface to btrees.
  4.  *
  5.  *    $Header: /private/postgres/src/lib/H/access/RCS/btreectl.h,v 1.2 1990/08/17 08:50:41 cimarron Exp $
  6.  */
  7.  
  8. #ifndef    BTREECTL_H
  9. #define    BTREECTL_H
  10.  
  11. #include "access/itup.h"
  12.  
  13. typedef struct BTreeCtlArgData {
  14.     IndexTuple    rlockLeft;
  15.     IndexTuple    rlockRight;
  16. } BTreeCtlArgData;
  17.  
  18. typedef    BTreeCtlArgData        *BTreeCtlArg;
  19.  
  20. #endif    /* BTREECTL_H */
  21.